home *** CD-ROM | disk | FTP | other *** search
- /* QL file system entry - adjusted by Simon N Goodwin, 17th July 1997.
- *
- * This is a version of QL0: customised for the CatWeasel disk controller.
- * Alter FLAGS from 2 (Double Density, 300 RPM) to 3 (High Density, 300 RPM)
- * if you prefer to access High Density (1.44 Mb) Qdos disks in this drive.
- * 40 track and single sided disks can also be formatted and accessed by
- * reducing HighCyl to 39 (from 79) or surfaces to 1, rather than 2. This
- * allows access to both 360K formats (DS40T & SS80T) and 180K SS40T disks.
- *
- * This file enables reading and writing of QDOS (QL) disks on the first
- * Catweasel floppy drive, normally referred to as PD0:, TD0:, CBM0: etc. By
- * creating new versions of this file and changing the Unit line to use other
- * numbers, you can make the QLFileSystem available on other devices. For
- * example, changing the value of Unit to 1 would create a mount file that
- * would allow for QDOS floppies on the second Catweasel drive.
- */
-
- FileSystem = L:QLFileSystem
- Device = multidisk.device
- Unit = 0
- Flags = 2
- Mount = 1
- Surfaces = 2
- BlocksPerTrack = 9
- Reserved = 0
- Interleave = 0
- LowCyl = 0
- HighCyl = 79
- Buffers = 21
- BufMemType = 1
- StackSize = 8000
- Priority = 5
- GlobVec = -1
- DosType = 0x444F5300
-
-